home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / cashboxloc.sql < prev    next >
Text File  |  2000-05-12  |  835b  |  23 lines

  1. /* RCSVER $Id: cashboxloc.sql,v 1.2 1999-03-29 16:48:14-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        cashboxloc.sql
  6. * Date:        02/23/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the cashboxloc table. Cashboxloc contains a location
  9. *        history for each cashbox.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE cashboxloc
  13. (
  14.     cashbox_glid    NUMBER(38),
  15.     move_date    DATE,
  16.     location_glid    NUMBER(38),
  17.     pstatus        NUMBER(38),    /* Primary status: In/Out of service */
  18.     status        NUMBER(38),      /* secondary status: counted etc. */
  19.     user_id        VARCHAR(80),
  20.     op_type        NUMBER(38),
  21.     CONSTRAINT pk_cashboxloc PRIMARY KEY (cashbox_glid, move_date)
  22. );
  23.